home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / setup365dni.exe / {app} / script / script_pocasi1.365 < prev    next >
Text File  |  2005-02-28  |  652b  |  21 lines

  1. <script type="text/javascript">
  2.     <!--
  3.      function SetRowColor(theRow, RowColor)
  4.      {
  5.          if(navigator.appName!='Microsoft Internet Explorer')  return false;
  6.  
  7.          if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
  8.              return false;
  9.          }
  10.  
  11.          if (RowColor=='1') {RowColor = 'white';}
  12.  
  13.          glob_Row = theRow;
  14.          var row_cells_cnt = theRow.cells.length;
  15.          for (var c = 0; c < row_cells_cnt; c++) {
  16.              theRow.cells[c].bgColor = RowColor;
  17.          }
  18.          return true;
  19.      } // end of the 'SetRowColor()' function
  20.     // -->
  21.     </script>